-
-
Notifications
You must be signed in to change notification settings - Fork 3
Remove jq dep from local test runner #54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
(To simplify verify-exercises file in main gdscript repo)
bin/test-local-gdscript-solution.sh
Outdated
| mkdir -p "${output_dir}" | ||
|
|
||
| (cd /opt/exercism/gdscript/test-runner && bin/run.sh "$slug" "$solution_dir" "$output_dir") || { | ||
| (cd /opt/exercism/gdscript/test-runner && godot --headless -s bin/test_runner.gd -- "${slug}" "${solution_dir}") || { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you're going to use {} maybe use them consistently?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point! My bad, fixed. ✔
|
@IsaacG I think if we merge this and make a dummy change over at exercism/gdscript#102, both CIs should be working. (The main thing in the other repo was that I couldn't use OS.execute in GDScript to refer to (cd && run.sh) the way bash did, so I changed run.sh over here to run from wherever it lives, which changed the directories hardcoded into the output. But the tests pass now over on this end.) |
https://forum.exercism.org/t/create-new-track-for-gdscript/3955/209
Goes with exercism/gdscript#102